home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / 3d_hyper / 3d_hyper.dcr / Internal_4_Continue Button.ls < prev    next >
Encoding:
Text File  |  2011-06-09  |  168 b   |  16 lines

  1. global gPaused
  2.  
  3. on mouseEnter me
  4.   cursor(280)
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9. end
  10.  
  11. on mouseUp me
  12.   cursor(-1)
  13.   gPaused = 0
  14.   sendAllSprites(#hideInstructions)
  15. end
  16.